 .logo {
    float: left;
    top: 10px;
    left: 10px;
 }
/* Setting nav menu to be on the right and give it a background color and margin */
nav {
   display: flex;
   padding: 1px;
   background-color: #6C698D;
   margin: 5px;
   border-radius: 10px;
   justify-content: space-evenly;

}


/* Sets the <a> tag in nav menu to white and removes the underline for hyperlink.
   Also sets a border around text with a color */
nav a {
  font-family: "Inter", Helvetica;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;

  font-size: 16px;
  transition: transform 0.3s ease; /* This will animate and scale over 0.3 seconds */


/* Sets the color of the nav <a> tag when hovering over to a color */
}
nav a:hover {
  color: #00bfff;
  transform: scale(1.1);/* This will scale */
  text-decoration: underline;
}

/* Font and alignment of body tag */
body {
   font-family: "Saira", Helvetica;
   background-color: #333333;
   color: white;
   text-align: center;
}

/* Adds background image and sets heading style */
header {
    width: 100%;
    justify-content: space-between;
    background-image: url("../images/sunset.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1e1e1e;
    font-size: 30px;
    min-height: 200px; /* Needed to match height of banner with logo */
}
header h1 {
    text-align: center;
    flex: none;
}

header a {
    text-align: end;
    font-size: 16px;
}

#content1 {
    margin: 10px;
    padding: 10px;
    border: 5px solid black;
    display: flex;
    background: #BFAFA6;
    color: black;
}
#content1 p {
    padding-left: 20px;
    text-align: left;
}

.vertical-line {
    border-left: 4px solid black; /* Define the style of the vertical line */
    height: 80px;
    margin: 10px;
    border-color: #6e6a6f;
}


#content2 {
    display: flex;
    padding: 10px;
    margin: 10px;
    border: 5px solid black;
    background: #BFAFA6;
    color: black;
}
#content2 p {
    padding-right: 10px;
    text-align: left;
}

/* Set footer color and text */
footer {
   background-color: #1e1e1e;
   color: grey;
   padding: 5px;
}

footer p {
    font-size: 10px;
    text-align: center;

}

footer a {
    text-decoration: none;
    color: white;
    font-size: 12px;
}

footer a:hover {
  color: #D4D2D5;
}

#example1 {
    border: 5px solid black;
    background: #BFAFA6;
    color: black;
    text-align: right;
}

#example2 img {
    width: 100px;
    height: 100px;
    border: 1px solid white;
    border-radius: 10px;
}

.cta-button {
    color: aquamarine;
    transition: transform 0.3s ease;
    float: right;
    padding-right: 20px;
}

header a:hover {
    transform: scale(1.1);
}
.header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero-description {
    text-align: center;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.55);
}

